.header {
  height: 64px;
  margin-top: 10px;
  background: #FFE4EE;
  opacity: 0.5;
  position: sticky;
  top: 10px;
  z-index: 10;
}

/* Главный баннер */
.main-banner {
  height: 100dvh;
  position: relative;
  margin-top: -74px;
}

.main-banner__img {
  width: 100%;
  height: 100%;
}

.main-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-banner__content {
  position: absolute;
  left: 60px;
  bottom: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
}

.main-banner__content-img {
  height: 0;
  min-height: 100%;
}

.main-banner__content-img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

.main-banner__content-text {
  max-width: 485px;
  display: flex; 
  flex-direction: column;
  gap: 12px;
  font-family: "Manrope";
  color: #FFFFFF;
  font-size: 12px;
}

.main-banner__content-subtitle {
  font-family: "Bounded";
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.main-banner__content-title {
  font-family: "Bounded";
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
}

.main-banner__content-hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, #CB9288 2%, #F0B1A9 10%, #FFBDB6 14%, #FFC1BB 19%, #FFCECC 25%, #FFE3E6 33%, #FFE9EE 34%, #FDE2E4 41%, #FAD0CC 52%, #F7BEB4 62.18%, #F0B4AA 60%, #F0B4AA 67%, #DE9A90 79%, #D0857C 87%, #D99287 89%, #F1B4A6 95%, #FCC4B4 97%);
    background-size: 300% 100%;
    animation: gradientShift 10s linear infinite;  
} 

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

.main-banner__content-btn {
  height: 45px;
  font-family: "Bounded";
  color: #BA5470;
  font-size: 12px;
  text-transform: uppercase;
  background: #FFE392;
  border: none;
  border-radius: 5px;
  margin-top: 24px;
  cursor: pointer;
}

.main-banner__content-btn::after {
    background: #FBE4EC;
}

/* Блок "О конкурсе" */
.about {
  padding: 80px 60px;
}

.about__main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.about__title {
  font-family: "Bounded";
  color: #D66584;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about__info {
  max-width: 530px;
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 40px;
}

.about__info-2 {
  max-width: 420px;
  margin-bottom: 0;
}

.about__info b {
  font-weight: 700;
}

.about__badge {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Bounded";
  color: #D66584;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  background: #FFF7FA;
  border: 2px solid #D66584;
  border-radius: 10px;
  padding: 20px 24px 16px;
  box-sizing: border-box;
  margin-bottom: 40px;
}

.about__imgs {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.about__img-1 {
  max-width: 420px;
}

.about__img-2 {
  max-width: 650px;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__history {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-top: -60px;
  margin-left: -50px;
}

.about__history-gallery {
  display: flex;
  gap: 10px;
  box-sizing: border-box;
}

.about__history-gallery img, .about__history-gallery video {
  max-width: 130px;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 0.5;
}

/* Блок "Этапы кастинга" */
.casting {
  background: #F6D6E0;
  border-radius: 30px;
  padding: 80px;
  margin: 0 60px;
}

.casting__title {
  font-family: "Bounded";
  color: #404040;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.casting__subtitle {
  font-family: "Bounded";
  color: #D66584;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.casting__steps {
  display: flex;
  gap: 60px;
}

.casting__step {
  flex: 1;
  position: relative;
  background: #FFF7FA;
  border-radius: 10px;
  padding: 40px 26px 36px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.casting__step-header {
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.casting__step-header--inner {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.casting__step-header svg {
  width: 100%;
  display: block;
}

.casting__step-number {
  font-family: "Bounded";
  color: rgba(214, 101, 132, 0.4);
  font-size: 72px;
  line-height: 54px;
}

.casting__step-title {
  font-family: "Bounded";
  color: #D66584;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.casting__step-subtitle {
  font-family: "Bounded";
  color: #D66584;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.casting__step-subtitle--disabled {
  color: rgba(214, 101, 132, 0.4);
  font-weight: 400;
}

.casting__step-info {
  font-family: "Manrope";
  font-size: 12px;
  margin-bottom: 50px;
}

.casting__step-img {
  display: block;
  margin: 50px auto;
}

.casting__step-warn {
  width: max-content;
  max-width: 255px;
  display: block;
  font-family: "Bounded";
  color: #D66584;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 22px;
}

.casting__step-button {
  width: 100%;
  height: 45px;
  font-family: "Bounded";
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  background: #D66584;
  border: 1px solid #D66584;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.casting__step-button:hover span {
  color: #D66584;
}

.casting__step-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  backdrop-filter: blur(27px);
  z-index: 1;
}

.casting__step-overlay span {
  max-width: 215px;
  font-family: "Bounded";
  color: #D66584;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

/* Блок с категориями */
.categories {
  height: 900px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 60px;
}

.categories__info {
  max-width: 515px;
  font-family: "Bounded";
  color: #D66584;
  font-size: 28px;
  text-transform: uppercase;
}

.categories__note {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories__note-block {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "Bounded";
  color: #D66584;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  background: #FFF7FA;
  border: 2px solid #D66584;
  padding: 20px 24px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.categories__note-warn {
  font-family: "Manrope";
  color: #949494;
  font-size: 12px;
}

.category {
  position: absolute;
  top: 140px;
  right: 270px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.category--missis {
  top: 50%;
  left: 290px;
  transform: translateY(-50%);
}

.category--little-miss {
  top: auto;
  right: 100px;
  bottom: 85px;
}

.category__img {
  height: 0;
  min-height: 100%;
  aspect-ratio: 1;
}

.category__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.category__content {
  max-width: 365px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 300;
}

.category__title {
  font-family: "Bounded";
  color: #D66584;
  font-size: 28px;
  font-weight: 400;
}

.category__btn {
  height: 45px;
  font-family: "Bounded";
  color: #D66584;
  font-size: 12px;
  text-transform: uppercase;
  background: #FFE392;
  border: none;
  border-radius: 5px;
  margin-top: 4px;
  cursor: pointer;
}

.decor-line {
  width: 100%;
  height: 80px;
}

.decor-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Блок про победительниц */
.winners {
  display: flex;
  gap: 40px;
  padding: 80px 60px;
}

.winners__main-img {
  max-width: 650px;
}

.winners__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.winners__content {
  width: 100%;
}

.winners__content-images {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-left: auto;
  margin-bottom: 10px;
}

.winners__gallery {
  width: max-content;
  display: flex;
  gap: 10px;
}

.winners__gallery img {
  max-width: 155px;
  aspect-ratio: 0.8;
}

.winners__info {
  font-family: "Bounded";
  color: #D66584;
  font-size: 24px;
  text-transform: uppercase;
}

/* Блок про реалити */
.reality {
  width: auto;
  aspect-ratio: 2;
  position: relative;
  border-radius: 30px;
  margin: 0 60px;
  overflow: hidden;
}

.reality__img {
  width: 100%;
  height: 100%;
}

.reality__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reality__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  background: #FFF7FA;
  border-radius: 10px;
  padding: 38px 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reality__content p {
  max-width: 360px;
  font-family: "Manrope";
  font-size: 12px;
  text-align: center;
}

.reality__content p:last-of-type {
  max-width: 320px;
}

.reality__title {
  font-family: "Bounded";
  color: #D66584;
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
}

.reality__hr {
  width: 100%;
  height: auto;
  display: block;
}

.reality__warn {
  max-width: 215px;
  font-family: "Bounded";
  color: #D66584;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.reality__btn {
  width: 100%;
  height: 45px;
  font-family: "Bounded";
  color: #FFFFFF;
  font-size: 12px;
  text-transform: uppercase;
  background: #D66584;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.reality__btn:after {
    background: #FBE4EC !important;
}

.reality__btn:hover span {
  color: #D66584 !important;
}

/* Блок социальные сети */
.socials {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 80px auto;
}

.socials p {
  font-family: "Bounded";
  color: #D66584;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}

.socials__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #D66584;
  text-decoration: none;
  border: 2px solid #D66584;
  border-radius: 10px;
  padding: 40px 60px;
  overflow: hidden;
}

.socials__link span {
  font-family: "Bounded";
  font-size: 40px;
  text-transform: uppercase;
}

.socials__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

@media (max-width: 1440px) {
  .header {
    height: 60px;
  }
  /* Главный баннер */
  .main-banner {
    margin-top: -70px;
  }

  .main-banner__content {
    left: 40px;
    bottom: 50px;
    gap: 20px;
  }

  .main-banner__content-text {
    max-width: 370px;
    gap: 8px;
  }

  .main-banner__content-subtitle {
    font-size: 10px;
  }

  .main-banner__content-title {
    font-size: 28px;
  }

  .main-banner__content-hr {
      height: 2px;
  } 

  .main-banner__content-btn {
    height: 40px;
    font-size: 10px;
    margin-top: 20px;
  }

  /* Блок "О конкурсе" */
  .about {
    padding: 70px 40px;
  }

  .about__title {
    font-size: 20px;
  }

  .about__info {
    max-width: 490px;
    margin-bottom: 32px;
  }

  .about__info-2 {
    max-width: 310px;
    margin-bottom: 0;
  }

  .about__info br {
    display: none;
  }

  .about__badge {
    font-size: 10px;
    padding-bottom: 12px;
  }

  .about__badge svg {
    max-width: 145px;
    height: auto;
  }

  .about__img-1 {
    max-width: 310px;
  }

  .about__img-2 {
    max-width: 485px;
  }

  .about__history {
    margin-top: 0;
    margin-left: -34px;
  }

  .about__history-gallery {
    gap: 6px;
  }

  .about__history-gallery img, .about__history-gallery video {
    max-width: 100px;
    border-radius: 7px;
  }

  /* Блок "Этапы кастинга" */
  .casting {
    border-radius: 20px;
    padding: 60px;
    margin: 0 40px;
  }

  .casting__title {
    font-size: 10px;
    margin-bottom: 16px;
  }

  .casting__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .casting__steps {
    gap: 40px;
  }

  .casting__step {
    padding: 36px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .casting__step-header {
    margin-bottom: 30px;
  }

  .casting__step-header--inner {
    gap: 8px;
    margin-bottom: 18px;
  }

  .casting__step-number {
    font-size: 54px;
    line-height: 41px;
  }

  .casting__step-title {
    font-size: 18px;
  }

  .casting__step-subtitle {
    font-size: 12px;
  }

  .casting__step-warn {
    max-width: 210px;
    font-size: 10px;
    margin: 0 auto 16px;
  }

  .casting__step-button {
    height: 40px;
    font-size: 10px;
  }

  .casting__step-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    backdrop-filter: blur(27px);
    z-index: 1;
  }

  .casting__step-overlay span {
    max-width: 215px;
    font-family: "Bounded";
    color: #D66584;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
  }

  /* Блок с категориями */
  .categories {
    height: 720px;
    padding: 70px 40px 50px;
  }

  .categories__info {
    max-width: 370px;
    font-size: 20px;
  }

  .categories__note-block {
    font-size: 10px;
    padding: 20px 24px 12px;
  }

  .categories__note-block svg {
    width: 145px;
    height: auto;
  }

  .categories__note-warn {
    font-size: 10px;
  }

  .category {
    top: 105px;
    right: 215px;
    gap: 16px;
  }

  .category--missis {
    top: 50%;
    left: 215px;
  }

  .category--little-miss {
    top: auto;
    right: 40px;
    bottom: 70px;
  }

  .category__img {
    height: 160px;
    min-height: auto;
  }

  .category__content {
    max-width: 310px;
    gap: 12px;
  }

  .category__title {
    font-size: 20px;
  }

  .category__btn {
    height: 40px;
    font-size: 10px;
  }

  .decor-line {
    height: 60px;
  }

  /* Блок про победительниц */
  .winners {
    padding: 70px 40px;
  }

  .winners__main-img {
    max-width: 485px;
  }

  .winners__content-images {
    gap: 30px;
  }

  .winners__gallery {
    gap: 6px;
  }

  .winners__gallery img {
    max-width: 115px;
  }

  .winners__logo img {
    width: 135px;
    height: auto;
  }

  .winners__info {
    font-size: 18px;
  }
  
  /* Блок про реалити */
  .reality {
    border-radius: 20px;
    margin: 0 40px;
  }

  .reality__content {
    gap: 20px;
    padding: 36px 24px;
  }

  .reality__content p {
    max-width: 310px;
  }

  .reality__title {
    font-size: 20px;
  }

  .reality__warn {
    font-size: 10px;
  }

  .reality__btn {
    height: 40px;
    font-size: 10px;
  }

  /* Блок социальные сети */
  .socials {
    margin: 55px auto;
  }

  .socials p {
    font-size: 18px;
  }

  .socials__link {
    padding: 36px 60px;
  }

  .socials__link span {
    font-size: 28px;
  }
}

@media (max-width: 1180px) {
  .categories {
    height: auto;
    gap: 40px;
  }

  .category {
    position: static;
  }

  .category--missis {
    transform: none;
  }
}

@media (max-width: 1080px) {
  /* Блок "Этапы кастинга" */
  .casting {
    border-radius: 30px;
    padding: 60px 20px;
    margin: 0;
  }

  .casting__steps {
    gap: 20px;
  }

  .casting__step {
    padding: 36px 10px;
  }

  .reality {
    aspect-ratio: 1;
  }
}

@media (max-width: 768px) {
  .header {
    margin-top: 5px;
    top: 5px;
  }

  /* Главный баннер */
  .main-banner {
    margin-top: -65px;
  }

  .main-banner__content {
    left: 20px;
    bottom: 40px;
    grid-template-columns: 1fr;
  }

  .main-banner__content-img {
    height: 80px;
    width: auto;
  }

  .main-banner__content-text {
    max-width: 320px;
  }

  .main-banner__content-title {
    font-size: 24px;
  }

  .main-banner__content-btn {
    height: 45px;
    font-size: 12px;
  }

  /* Блок "О конкурсе" */
  .about {
    padding: 60px 0;
  }

  .about__main {
    flex-direction: column;
  }

  .about__content {
    padding: 0 20px;
  }

  .about__title {
    font-size: 24px;
  }

  .about__info {
    margin-bottom: 40px;
  }

  .about__info-2 {
    margin-bottom: 0;
  }

  .about__badge {
    width: 100%;
    font-size: 14px;
    padding-bottom: 16px;
    margin-bottom: 0px;
  }

  .about__imgs {
    gap: 10px;
  }

  .about__history {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    margin-left: 0;
  }

  .about__history-gallery {
    width: 100%;
    gap: 10px;
    padding: 0 20px;
  }

  .about__history-gallery img, .about__history-gallery video {
    min-width: 0;
    max-width: 100%;
    border-radius: 8px;
    flex: 1;
  }

  .about__history-gallery img:first-child, .about__history-gallery img:last-child {
    display: none;
  }

  /* Блок "Этапы кастинга" */
  .casting__title {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .casting__subtitle {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .casting__steps {
    flex-direction: column;
  }

  .casting__step {
    padding: 40px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .casting__step-header {
    margin-bottom: 40px;
  }

  .casting__step-header--inner {
    gap: 12px;
    margin-bottom: 22px;
  }

  .casting__step-number {
    font-size: 60px;
    line-height: 45px;
  }

  .casting__step-title {
    font-size: 20px;
  }

  .casting__step-subtitle {
    font-size: 14px;
  }

  .casting__step-info {
    margin-bottom: 27px;
  }

  .casting__step-img {
    width: 205px;
    margin: 27px auto;
  }

  .casting__step-warn {
    max-width: 255px;
    font-size: 12px;
    margin: 50px auto 22px;
  }

  .casting__step-button {
    height: 45px;
    font-size: 12px;
  }

  .casting__step-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    backdrop-filter: blur(27px);
    z-index: 1;
  }

  .casting__step-overlay span {
    max-width: 215px;
    font-family: "Bounded";
    color: #D66584;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
  }

  /* Блок с категориями */
  .categories {
    padding: 60px 20px;
  }

  .categories__info {
    max-width: 515px;
    font-size: 24px;
  }

  .categories__note {
    width: 100%;
  }

  .categories__note-block {
    width: 100%;
    font-size: 14px;
    padding: 24px 24px 16px;
  }

  .categories__note-warn {
    font-size: 12px;
  }

  .category {
    gap: 20px;
  }

  .category__img {
    height: 100px;
  }

  .category__content {
    max-width: 100%;
    gap: 16px;
  }

  .category__title {
    font-size: 22px;
  }

  .category__btn {
    height: 45px;
    font-size: 12px;
  }

  /* Блок про победительниц */
  .winners {
    flex-direction: column;
    gap: 45px;
    padding: 0;
    padding-bottom: 60px;
  }

  .winners__main-img {
    max-width: 100%;
  }

  .winners__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 45px;
  }

  .winners__content-images {
    width: 100%;
    margin-bottom: 0;
  }

  .winners__gallery {
    width: 100%;
    gap: 0;
  }

  .winners__gallery img {
    flex: 1;
    max-width: 100%;
    width: 0;
  }

  .winners__logo img {
    width: 150px;
  }

  .winners__info {
    font-size: 24px;
    padding: 0 20px;
  }

  .winners__info br {
    display: none;
  }

  /* Блок про реалити */
  .reality {
    aspect-ratio: 0.6;
    margin: 0;
  }

  .reality__content {
    width: max-content;
    max-width: 90%;
    gap: 22px;
    background: #FFF7FA;
    padding: 40px 20px;
  }

  .reality__content p {
    max-width: 360px;
  }

  .reality__title {
    font-size: 24px;
  }

  .reality__warn {
    font-size: 12px;
  }

  .reality__btn {
    height: 45px;
    font-size: 12px;
  }

  /* Блок социальные сети */
  .socials {
    width: 90%;
    margin: 85px auto;
  }

  .socials p {
    font-size: 16px;
  }

  .socials__link {
    width: 100%;
    height: 95px;
    padding: 0;
  }

  .socials__link span {
    font-size: 22px;
  }
}

@media (max-width: 360px) {
  .main-banner__content {
    right: 20px;
  }

  .casting__step-warn {
    max-width: 100%;
  }

  .category__title {
    font-size: 20px;
  }

  .winners__info {
    font-size: 18px;
  }
}